|
|
@@ -59,8 +59,8 @@ If you just want to play around, you can simply fork this repository, then perfo
|
59
|
59
|
* Run `git remote add upstream https://github.com/cantino/huginn.git` to add the main repository as a remote for your fork.
|
60
|
60
|
* Copy `.env.example` to `.env` (`cp .env.example .env`) and edit `.env`, at least updating the `APP_SECRET_TOKEN` variable.
|
61
|
61
|
* Run `bundle` to install dependencies
|
62
|
|
-* Run `rake db:create`, `rake db:migrate`, and then `rake db:seed` to create a development MySQL database with some example Agents.
|
63
|
|
-* Run `foreman start`, visit [http://localhost:3000/][localhost], and login with the username of `admin` and the password of `password`.
|
|
62
|
+* Run `bundle exec rake db:create`, `bundle exec rake db:migrate`, and then `bundle exec rake db:seed` to create a development MySQL database with some example Agents.
|
|
63
|
+* Run `bundle exec foreman start`, visit [http://localhost:3000/][localhost], and login with the username of `admin` and the password of `password`.
|
64
|
64
|
* Setup some Agents!
|
65
|
65
|
* Read the [wiki][wiki] for usage examples and to get started making new Agents.
|
66
|
66
|
* Periodically run `git fetch upstream` and then `git checkout master && git merge upstream/master` to merge in the newest version of Huginn.
|